From: Keir Fraser Date: Thu, 11 Dec 2008 22:32:20 +0000 (+0000) Subject: xentop: Fix fprintf() build failure. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14026^2~29 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=050404c847da62817a4a3bf1129804ca0851d9dd;p=xen.git xentop: Fix fprintf() build failure. Signed-off-by: Keir Fraser --- diff --git a/tools/xenstat/xentop/xentop.c b/tools/xenstat/xentop/xentop.c index da2df45bb0..0bbedfef77 100644 --- a/tools/xenstat/xentop/xentop.c +++ b/tools/xenstat/xentop/xentop.c @@ -254,7 +254,7 @@ static void fail(const char *str) { if(cwin != NULL && !isendwin()) endwin(); - fprintf(stderr, str); + fprintf(stderr, "%s", str); exit(1); }